projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cac4d45
)
(generic-mode-set-comments): Use "" rather than nil for comment-end.
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Thu, 29 Mar 2001 14:16:15 +0000
(14:16 +0000)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Thu, 29 Mar 2001 14:16:15 +0000
(14:16 +0000)
lisp/generic.el
patch
|
blob
|
history
diff --git
a/lisp/generic.el
b/lisp/generic.el
index 97eb131346e1c89db2043eafc50e2df0496ad6a4..fd2ac80afa0081a86a7353ba69daf030f50516f2 100644
(file)
--- a/
lisp/generic.el
+++ b/
lisp/generic.el
@@
-309,7
+309,7
@@
Some generic modes are defined in `generic-x.el'."
(concat comment-start-skip "\\|" (regexp-quote start) "+\\s-*")))
;; First comment-style
(setq comment-start start)
- (setq comment-end (
unless (string-equal end "\n")
end))
+ (setq comment-end (
if (string-equal end "\n") ""
end))
(setq comment-start-skip (concat (regexp-quote start) "+\\s-*")))
;; Reuse comstyles if necessary